home *** CD-ROM | disk | FTP | other *** search
/ Java Certification Exam Guide / McGrawwHill-JavaCertificationExamGuide.iso / pc / Web Links and Code / code / chap9 / Base.java next >
Encoding:
Text File  |  1997-04-20  |  181 b   |  14 lines

  1. class Base {
  2.    int i = 1;
  3.    String test() {
  4.       return "Base";
  5.    }
  6. }
  7.  
  8. class Derived extends Base {
  9.    int i = 2;
  10.    String test() {
  11.       return "Derived";
  12.    }
  13. }
  14.